AsyncSubject.OnNext(T) method¶
Defined in
Type: AsyncSubjectSystem.Reactive.Subjects
Assembly: System.Reactive.dll
Applies to
netstandard2.0
public override void OnNext(T value)
Summary: Sends a value to the subject. The last value received before successful termination will be sent to all subscribed and future observers.
Parameters
| Name | Type | Description |
|---|---|---|
value | T | The value to store in the subject. |